home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Modules / BackSpaceModules / Source / Spiro3 / Spiro3View.h < prev    next >
Text File  |  1993-01-30  |  389b  |  31 lines

  1. #import <appkit/View.h>
  2. #define NUMLINES 12
  3. #define TWONUMLN 24
  4. #define LINEWIDTH 0.10
  5. #define PI 3.1415926
  6. #define TWOP 6.2831852
  7.  
  8. @interface Spiro3View:View
  9. {
  10.   char ops[NUMLINES];
  11.  
  12.   int n,p,q,count;
  13.   long int c;
  14.  
  15.   float pts[TWONUMLN],
  16.   bbox[4],
  17.   rho[NUMLINES], drho, 
  18.   rad, drad,
  19.   pinc,
  20.   xscale, yscale,
  21.   xdif,ydif,
  22.   midx, midy; 
  23.  
  24.   int winNum;
  25. }
  26.  
  27. - oneStep;
  28. - newSize;
  29. @end
  30.  
  31.